home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / progtool / gnu / gnushell / examples / example.prj next >
Text File  |  1995-11-25  |  1KB  |  35 lines

  1. # ====================================================================
  2. #                  Beispiel-Projektfile für GNUShell
  3. # ====================================================================
  4. # Es bestehen folgende Abhängigkeiten:
  5. #
  6. # MAIN.TOS
  7. #     MAIN.OBJ
  8. #         MAIN.C
  9. #         MODUL1.H
  10. #         MODUL2.H
  11. #     MODUL1.OBJ
  12. #         MODUL1.C
  13. #         MODUL1.H
  14. #     MODUL2.OBJ
  15. #         MODUL2.C
  16. #         MODUL2.H
  17. # -------------------------------------------------------------------
  18. # alle C-Files sollen mit der Option -c (nur compilieren),
  19. # -mshort (16bit Integer) und -Wall uebersetzt werden,
  20. # das Modul MODUL2.C zusaetzlich mit -pedantic.
  21. # Zum Debuggen werden zusaetzlich die Optionen
  22. # -g -D__NO__INLINE__ (Debug-Informationen) benoetigt.
  23. # Dabei ist ein zweiter Link-Durchlauf mit dem Projektfile
  24. # EXDEBUG.PRJ notwendig.
  25. # ====================================================================
  26. MAIN.TOS
  27. #.C [-c -mshort -Wall] # Ohne Debug-Information
  28. .C [-c -g -mshort -Wall -D__NO__INLINE__] # Mit Debug-Information
  29. =
  30. MAIN.C (MODUL1.H MODUL2.H)
  31. MODUL1.C (MODUL1.H)
  32. MODUL2.C [-pedantic] (MODUL2.H)
  33. GNU16.OLB
  34.  
  35.